home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-03-20 | 935 b | 35 lines | [TEXT/MPS ] |
- ;
- ; File: Spooling.a
- ;
- ; Assembly code (jump table) for a printing extension
- ; which redirects spool files.
- ;
- ; Dave Hersey
- ; Apple Developer Technical Support
- ;
- ; 1/29/93 - dmh - Created.
- ; 4/27/93 - dmh - Updated for b1.
- ; 9/06/93 - dmh - Updated for b2.
- ; 12/18/93 - dmh - Updated for b3.
- ;
-
- EXPORT EntryPoint
- IMPORT SPInitialize ; Our override for GXInitialize.
- IMPORT SPShutDown ; Our override for GXShutDown.
- IMPORT SPJobPrintDialog ; Our override for GXJobPrintDialog.
- IMPORT SPHandlePanelEvent ; Our override for GXHandlePanelEvent.
- IMPORT SPCreateSpoolFile ; Our override for GXCreateSpoolFile.
-
- EntryPoint PROC ; Our main entry point.
-
- DC.L 0 ; Reserved for owner count.
-
- JMP SPInitialize ; (offset = 4)
- JMP SPShutDown ; (offset = 8)
- JMP SPJobPrintDialog ; (offset = 12)
- JMP SPHandlePanelEvent ; (offset = 16)
- JMP SPCreateSpoolFile ; (offset = 20)
-
- ENDPROC
- END
-